home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / fish / 676-700 / 681 / term / source.lha / LMkFile < prev    next >
Text File  |  1992-05-09  |  2KB  |  71 lines

  1. ###############################################################################
  2. #
  3. # $Id: LMkFile,v 1.6 92/05/05 18:14:01 olsen Sta Locker: olsen $
  4. # $Revision: 1.6 $
  5. # $Date: 92/05/05 18:14:01 $
  6. #
  7. # Makefile for the `LMk' utility required to build `term'
  8. #
  9. # Copyright © 1990-1992 by Olaf `Olsen' Barthel & MXM
  10. #    All Rights Reserved
  11. #
  12. ###############################################################################
  13.  
  14. .c.o:
  15.     LC $(CFLAGS) -HRAM:term.SYM $*.c
  16.  
  17. .c.oo:
  18.     LC $(CFLAGS) -HRAM:term.SYM -O -o$*.oo $*.c
  19.  
  20. .asm.o:
  21.     ASM -IASM: $*.asm
  22.  
  23. .c.sym:
  24.     LC -cimqws -n65 -ph -o$@ $*.c
  25.  
  26. CFLAGS        = -cmqws -b1 -r1 -v -j89 -mt0 -n65
  27. #CFLAGS        = -cmqws -b1 -r1 -v -j89 -mt3 -n65 -DMC68030
  28. LFLAGS        = SC SD ND
  29.  
  30. LIBS        = LIB:amiga.lib LIB:lc.lib
  31.  
  32. OBJS        = termMain.o Beep.o CommandPanel.o Console.oo CopyPanel.o \
  33.           DatePanel.o DayPanel.o DialPanel.o DPrintf.o EmulationPanel.o \
  34.           FastMacroPanel.o FastMacros.o FileBuffer.oo Format.o GadgetSupport.o \
  35.           HotkeyPanel.o Identify.o ImportPanel.o LocaleSupport.o MacroPanel.o \
  36.           MiscPanel.o ModemPanel.o Packet.o ParseCode.oo ParseRoutines.oo \
  37.           PasswordUserPanel.o PathPanel.o PhonePanel.o QuickSort.o RatePanel.o \
  38.           SaveILBM.o Scale.oo ScreenPanel.o Serial.oo SerialPanel.o \
  39.           SpeechPanel.o StringDef.o StringHook.o termAux.o termBuffer.o \
  40.           termClip.o termCrypt.oo termData.o termHotkeys.o TerminalPanel.o \
  41.           termInfo.o termInit.o termPhone.o termRaster.oo termReview.o \
  42.           termRexx.o termScroll.oo termSpeech.o termTag.o termTransfer.o \
  43.           termXEM.oo termXPR.oo ToneDial.o TransferPanel.o UploadPanel.o
  44.  
  45. all:        term.SYM RAM:term.SYM term
  46.  
  47. termTag.o:    termTag.asm term.i
  48.         ASM -IASM: termTag.asm
  49.  
  50. term:        $(OBJS)
  51.         BLINK WITH term.WITH <<!(term.WITH)
  52.             FROM
  53.             $(OBJS)
  54.             TO
  55.             $@
  56.             LIB
  57.             $(LIBS)
  58.             $(LFLAGS)
  59.         <
  60.  
  61. term.SYM:    PreInclude.c term_strings.h
  62.  
  63. RAM:term.SYM:    term.SYM
  64.         Copy term.SYM $@
  65.  
  66. StringDef.o:    StringDef.c term_strings.h
  67.         LC -b1 -r1 -cs -n65 StringDef.c
  68.  
  69. GadgetSupport.o:    GadgetSupport.c
  70.         LC $(CFLAGS) GadgetSupport.c
  71.